Skip to content

Commit e0067c0

Browse files
committed
Fix typo
1 parent e3d409b commit e0067c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

026-exception.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ int main()
267267
~~~cpp
268268
int main()
269269
{
270-
std::array<1,int> a = {0} ;
270+
std::array<int, 1> a = {0} ;
271271
272272
try { a[1000] ; }
273273
catch( std::out_of_range & e )

0 commit comments

Comments
 (0)