aboutsummaryrefslogtreecommitdiff
path: root/src/utilstrencodings.cpp
diff options
context:
space:
mode:
authorMichael Ford <fanquake@gmail.com>2014-11-17 11:04:01 +0800
committerMichael Ford <fanquake@gmail.com>2014-11-17 11:04:01 +0800
commitc63a73d18aa60207790f24b9a910fd45eb3afaa3 (patch)
treeb9f54e44b87da879c39c3d0b83a2a634fda2521f /src/utilstrencodings.cpp
parent3d3ce7421e11ed693840e04bee4d18fb9d396309 (diff)
downloadbitcoin-c63a73d18aa60207790f24b9a910fd45eb3afaa3.tar.xz
Update comments in util to be doxygen compatible
Diffstat (limited to 'src/utilstrencodings.cpp')
-rw-r--r--src/utilstrencodings.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/utilstrencodings.cpp b/src/utilstrencodings.cpp
index 15094e5999..a961b3c5cd 100644
--- a/src/utilstrencodings.cpp
+++ b/src/utilstrencodings.cpp
@@ -1,6 +1,6 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
-// Distributed under the MIT/X11 software license, see the accompanying
+// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "utilstrencodings.h"
@@ -14,8 +14,10 @@
using namespace std;
-// safeChars chosen to allow simple messages/URLs/email addresses, but avoid anything
-// even possibly remotely dangerous like & or >
+/**
+ * safeChars chosen to allow simple messages/URLs/email addresses, but avoid anything
+ * even possibly remotely dangerous like & or >
+ */
static string safeChars("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890 .,;_/:?@()");
string SanitizeString(const string& str)
{