@@ -32,37 +32,37 @@ MONGOCXX_INLINE_NAMESPACE_BEGIN
3232namespace model {
3333
3434// /
35- // / Models a single write operation within a @ bulk_write.
35+ // / Models a single write operation within a mongocxx:: bulk_write.
3636// /
3737class MONGOCXX_API write {
3838 public:
3939 // /
40- // / Constructs a write from an @ insert_one.
40+ // / Constructs a write from a model:: insert_one.
4141 // /
4242 write (insert_one value);
4343
4444 // /
45- // / Constructs a write from an @ update_one.
45+ // / Constructs a write from a model:: update_one.
4646 // /
4747 write (update_one value);
4848
4949 // /
50- // / Constructs a write from an @ update_many.
50+ // / Constructs a write from a model:: update_many.
5151 // /
5252 write (update_many value);
5353
5454 // /
55- // / Constructs a write from a @ delete_one.
55+ // / Constructs a write from a model:: delete_one.
5656 // /
5757 write (delete_one value);
5858
5959 // /
60- // / Constructs a write from a @ delete_many.
60+ // / Constructs a write from a model:: delete_many.
6161 // /
6262 write (delete_many value);
6363
6464 // /
65- // / Constructs a write from a @ replace_one.
65+ // / Constructs a write from a model:: replace_one.
6666 // /
6767 write (replace_one value);
6868
@@ -91,43 +91,43 @@ class MONGOCXX_API write {
9191 write_type type () const ;
9292
9393 // /
94- // / Accesses the write as an @ insert_one. It is illegal to call
95- // / this method if the return of @ type (above ) does not indicate
94+ // / Accesses the write as a model:: insert_one. It is illegal to call
95+ // / this method if the return of type( ) does not indicate
9696 // / that this object currently contains the applicable type.
9797 // /
9898 const insert_one& get_insert_one () const ;
9999
100100 // /
101- // / Accesses the write as an @ update_one. It is illegal to call
102- // / this method if the return of @ type (above ) does not indicate
101+ // / Accesses the write as an model:: update_one. It is illegal to call
102+ // / this method if the return of type( ) does not indicate
103103 // / that this object currently contains the applicable type.
104104 // /
105105 const update_one& get_update_one () const ;
106106
107107 // /
108- // / Accesses the write as an @ update_many. It is illegal to call
109- // / this method if the return of @ type (above ) does not indicate
108+ // / Accesses the write as an model:: update_many. It is illegal to call
109+ // / this method if the return of type( ) does not indicate
110110 // / that this object currently contains the applicable type.
111111 // /
112112 const update_many& get_update_many () const ;
113113
114114 // /
115- // / Accesses the write as a @ delete_one. It is illegal to call
116- // / this method if the return of @ type (above ) does not indicate
115+ // / Accesses the write as a model:: delete_one. It is illegal to call
116+ // / this method if the return of type( ) does not indicate
117117 // / that this object currently contains the applicable type.
118118 // /
119119 const delete_one& get_delete_one () const ;
120120
121121 // /
122- // / Accesses the write as a @ delete_many. It is illegal to call
123- // / this method if the return of @ type (above ) does not indicate
122+ // / Accesses the write as a model:: delete_many. It is illegal to call
123+ // / this method if the return of type( ) does not indicate
124124 // / that this object currently contains the applicable type.
125125 // /
126126 const delete_many& get_delete_many () const ;
127127
128128 // /
129- // / Accesses the write as a @ replace_one. It is illegal to call
130- // / this method if the return of @ type (above ) does not indicate
129+ // / Accesses the write as a model:: replace_one. It is illegal to call
130+ // / this method if the return of type( ) does not indicate
131131 // / that this object currently contains the applicable type.
132132 // /
133133 const replace_one& get_replace_one () const ;
0 commit comments