Skip to content

Commit 8466fe2

Browse files
author
mikeblome
committed
fixed capitalization errors
1 parent 9c2b3bc commit 8466fe2

8 files changed

Lines changed: 12 additions & 16 deletions

docs/standard-library/cache-chunklist-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class cache_chunklist
2424
2525
## Remarks
2626
27-
this class template uses **operator new** to allocate chunks of raw memory, suballocating blocks to allocate storage for a memory block when needed; it stores deallocated memory blocks in a separate free list for each chunk, and uses **operator delete** to deallocate a chunk when none of its memory blocks is in use.
27+
This class template uses **operator new** to allocate chunks of raw memory, suballocating blocks to allocate storage for a memory block when needed; it stores deallocated memory blocks in a separate free list for each chunk, and uses **operator delete** to deallocate a chunk when none of its memory blocks is in use.
2828
2929
Each memory block holds *Sz* bytes of usable memory and a pointer to the chunk that it belongs to. Each chunk holds `Nelts` memory blocks, three pointers, an int and the data that **operator new** and **operator delete** require.
3030

docs/standard-library/codecvt-utf16-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Configuration information for the locale facet.
2727
2828
## Remarks
2929
30-
this class template converts between wide characters encoded as UCS-2 or UCS-4 and a byte stream encoded as UTF-16LE, if Mode & little_endian, or UTF-16BE otherwise.
30+
This class template converts between wide characters encoded as UCS-2 or UCS-4 and a byte stream encoded as UTF-16LE, if Mode & little_endian, or UTF-16BE otherwise.
3131
3232
The byte stream should be written to a binary file; it can be corrupted if written to a text file.
3333

docs/standard-library/freelist-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class freelist : public Max
2525
2626
## Remarks
2727
28-
this class template manages a list of memory blocks of size *Sz* with the maximum length of the list determined by the max class passed in *Max*.
28+
This class template manages a list of memory blocks of size *Sz* with the maximum length of the list determined by the max class passed in *Max*.
2929
3030
### Constructors
3131

docs/standard-library/iosfwd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ typedef basic_fstream<wchar_t, char_traits<wchar_t>> wfstream;
5454
};
5555
```
5656

57-
## Forward Declarations / Class Templates
57+
## Forward declarations and class templates
5858

5959
```cpp
6060
template <class _Statetype>

docs/standard-library/is-trivially-move-assignable-class.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,11 @@ An instance of the type predicate holds true if the type *Ty* is a class that ha
2727

2828
A move assignment operator for a class *Ty* is trivial if:
2929

30-
it is implicitly provided
31-
32-
the class *Ty* has no virtual functions
33-
34-
the class *Ty* has no virtual bases
35-
36-
the classes of all the non-static data members of class type have trivial move assignment operators
37-
38-
the classes of all the non-static data members of type array of class have trivial move assignment operators
30+
- it is implicitly provided
31+
- the class *Ty* has no virtual functions
32+
- the class *Ty* has no virtual bases
33+
- the classes of all the non-static data members of class type have trivial move assignment operators
34+
- the classes of all the non-static data members of type array of class have trivial move assignment operators
3935

4036
## Requirements
4137

docs/standard-library/rts-alloc-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class rts_alloc
2424
2525
## Remarks
2626
27-
this class template holds multiple block allocator instances and determines which instance to use for allocation or deallocation at runtime instead of at compile time. It is used with compilers that cannot compile rebind.
27+
This class template holds multiple block allocator instances and determines which instance to use for allocation or deallocation at runtime instead of at compile time. It is used with compilers that cannot compile rebind.
2828
2929
### Member functions
3030

docs/standard-library/sample-container-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A few additional caveats:
2323

2424
The container classes defined by C++ Standard Library satisfy several additional requirements, as described in the following paragraphs.
2525

26-
container class template [list](../standard-library/list-class.md) provides deterministic, and useful, behavior even in the presence of the exceptions described above. For example, if an exception is thrown during the insertion of one or more elements, the container is left unaltered and the exception is rethrown.
26+
Container class template [list](../standard-library/list-class.md) provides deterministic, and useful, behavior even in the presence of the exceptions described above. For example, if an exception is thrown during the insertion of one or more elements, the container is left unaltered and the exception is rethrown.
2727

2828
For *all* the container classes defined by C++ Standard Library, if an exception is thrown during calls to the following member functions, `insert`, `push_back`, or `push_front`, the container is left unaltered and the exception is rethrown.
2929

docs/standard-library/shared-mutex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public:
121121
122122
### <a name="class_shared_lock"></a> shared_lock Class
123123
124-
class template `shared_lock` controls the shared ownership of a shared mutex object within a scope. The template parameter must be a shared mutex type.
124+
Class template `shared_lock` controls the shared ownership of a shared mutex object within a scope. The template parameter must be a shared mutex type.
125125
126126
```cpp
127127
class shared_lock {

0 commit comments

Comments
 (0)