Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTianqi Zhang <tianzh@microsoft.com>2021-06-30 09:44:18 +0300
committerTianqi Zhang <tianzh@microsoft.com>2021-06-30 09:44:18 +0300
commita38e403054b23ee95c7ef1304becca995732bff4 (patch)
treeda98c7432c32acb1e43f8f3640c0d02a0aad6259
parentf85bfe2620c696c3a071050647f3c0db2923d720 (diff)
indent
-rw-r--r--monodoc/Monodoc.Ecma/EcmaDesc.cs2
-rw-r--r--monodoc/Monodoc.Ecma/EcmaUrlTokenizer.cs12
2 files changed, 7 insertions, 7 deletions
diff --git a/monodoc/Monodoc.Ecma/EcmaDesc.cs b/monodoc/Monodoc.Ecma/EcmaDesc.cs
index d2a79da4..d50c30e5 100644
--- a/monodoc/Monodoc.Ecma/EcmaDesc.cs
+++ b/monodoc/Monodoc.Ecma/EcmaDesc.cs
@@ -28,7 +28,7 @@ namespace Monodoc.Ecma
Pointer,
Ref,
Out,
- Nullable
+ Nullable
}
public enum Format
diff --git a/monodoc/Monodoc.Ecma/EcmaUrlTokenizer.cs b/monodoc/Monodoc.Ecma/EcmaUrlTokenizer.cs
index 2a0ac211..8d9d26e5 100644
--- a/monodoc/Monodoc.Ecma/EcmaUrlTokenizer.cs
+++ b/monodoc/Monodoc.Ecma/EcmaUrlTokenizer.cs
@@ -111,8 +111,8 @@ namespace Monodoc.Ecma
return Token.OUT_ARG;
case '$':
return Token.EXPLICIT_IMPL_SEP;
- case '?':
- return Token.QUESTION_MARK;
+ case '?':
+ return Token.QUESTION_MARK;
default:
return TokenizeIdentifierOrNumber (next);
}
@@ -156,8 +156,8 @@ namespace Monodoc.Ecma
{
try {
if (input == null || real_current_pos >= input.Length)
- return EndOfStream;
-
+ return EndOfStream;
+
return input[real_current_pos++];
} catch {
return EndOfStream;
@@ -168,8 +168,8 @@ namespace Monodoc.Ecma
{
try {
if (input == null || real_current_pos >= input.Length)
- return EndOfStream;
-
+ return EndOfStream;
+
return input[real_current_pos];
} catch {
return EndOfStream;