From 45e058f2c5049f13b72dad0c4152c440ac2f4b25 Mon Sep 17 00:00:00 2001
From: Tim Blechmann <tim@klingt.org>
Date: Tue, 23 Jul 2013 13:53:52 +0200
Subject: [PATCH] format: fix documentation
convert string_t to string_type to match with implementation
---
libs/format/doc/format.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/libs/format/doc/format.html b/libs/format/doc/format.html
index ca30364..ffae8f4 100644
a
|
b
|
template<class charT, class Traits=std::char_traits<charT> >
|
931 | 931 | class basic_format |
932 | 932 | { |
933 | 933 | public: |
934 | | typedef std::basic_string<charT, Traits> string_t; |
935 | | typedef typename string_t::size_type size_type; |
| 934 | typedef std::basic_string<charT, Traits> string_type; |
| 935 | typedef typename string_type::size_type size_type; |
936 | 936 | basic_format(const charT* str); |
937 | 937 | basic_format(const charT* str, const std::locale & loc); |
938 | | basic_format(const string_t& s); |
939 | | basic_format(const string_t& s, const std::locale & loc); |
| 938 | basic_format(const string_type& s); |
| 939 | basic_format(const string_type& s, const std::locale & loc); |
940 | 940 | basic_format& operator= (const basic_format& x); |
941 | 941 | |
942 | 942 | void clear(); // reset buffers |
943 | | basic_format& parse(const string_t&); // clears and parse a new format string |
| 943 | basic_format& parse(const string_type&); // clears and parse a new format string |
944 | 944 | |
945 | | string_t str() const; |
| 945 | string_type str() const; |
946 | 946 | size_type size() const; |
947 | 947 | |
948 | 948 | // pass arguments through those operators : |