Skip to content

Commit 88f5ebd

Browse files
committed
typo
1 parent f5264d2 commit 88f5ebd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/modules/ROOT/nav.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
* Tutorials
22
** xref:hello_world.adoc[Hello World]
33
** xref:multiple_dispatch.adoc[Multiple Dispatch]
4-
** xref:headers_namespaces.adoc[Namespaces and Headers]
4+
** xref:headers_namespaces.adoc[Headers and Namespaces]
55
** xref:friendship.adoc[Friendship]
66
** xref:performance.adoc[Performance]
77
** xref:smart_pointers.adoc[Smart Pointers]

doc/modules/ROOT/pages/headers_namespaces.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ include::example$headers_namespaces/cat.cpp[]
4343
`BOOST_OPENMETHOD_CLASSES` should be placed in an implementation file. It can
4444
also go in a header file, but this wastes space, as the same registrar will be
4545
created in every translation unit that includes the header. It doesn't matter
46-
which namespace the macro is called in. It can take be used with any class name
47-
in scope, or with qualified names.
46+
which namespace the macro is called in. It can be used with any class name in
47+
scope, or with qualified names.
4848

4949
`BOOST_OPENMETHOD_OVERRIDE` uses the guide function declared by
5050
`BOOST_OPENMETHOD` to locate a method that can be called with the same arguments

doc/modules/ROOT/pages/smart_pointers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ smart virtual_ptr to it. Since the exact type of the object is known, the vptr
1111
is read from a static variable, without incuring the cost of a hash table
1212
lookup.
1313

14-
Here is a variaton of the AST example that uses dynamic allocation and unique
14+
Here is a variation of the AST example that uses dynamic allocation and unique
1515
pointers:
1616

1717

0 commit comments

Comments
 (0)