Skip to content

Commit

Permalink
fix spell "namespase"
Browse files Browse the repository at this point in the history
  • Loading branch information
yknishidate committed Sep 21, 2023
1 parent dc16deb commit d6ce50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang/cpp20/modules.md
Expand Up @@ -239,7 +239,7 @@ export using namespace N; // エラー: 新たな名前を宣言していない
export {
struct Foo { /*...*/ }; // エクスポートされる
static_assert(std::is_trivially_copyable_v<Foo>); // エラー: 新たな名前を宣言していない
using namespase std; // エラー: 新たな名前を宣言していない
using namespace std; // エラー: 新たな名前を宣言していない
}
```

Expand Down

0 comments on commit d6ce50d

Please sign in to comment.