Kaynağa Gözat

Table of contents;

bjorn 10 yıl önce
ebeveyn
işleme
235e2318d9
2 değiştirilmiş dosya ile 6 ekleme ve 6 silme
  1. 5 5
      doc/README.md
  2. 1 1
      tools/update_documentation.lua

+ 5 - 5
doc/README.md

@@ -1,9 +1,9 @@
-- [Observer](#Observer)
+- [Observer](#observer)
   - [create](#createonnext-onerror-oncomplete)
   - [create](#createonnext-onerror-oncomplete)
   - [onNext](#onnextvalues)
   - [onNext](#onnextvalues)
   - [onError](#onerrormessage)
   - [onError](#onerrormessage)
   - [onComplete](#oncomplete)
   - [onComplete](#oncomplete)
-- [Observable](#Observable)
+- [Observable](#observable)
   - [create](#createsubscribe)
   - [create](#createsubscribe)
   - [fromValue](#fromvaluevalue)
   - [fromValue](#fromvaluevalue)
   - [fromRange](#fromrangeinitial-limit-step)
   - [fromRange](#fromrangeinitial-limit-step)
@@ -33,13 +33,13 @@
   - [takeUntil](#takeuntilother)
   - [takeUntil](#takeuntilother)
   - [unpack](#unpack)
   - [unpack](#unpack)
   - [unwrap](#unwrap)
   - [unwrap](#unwrap)
-- [Scheduler](#Scheduler)
-- [CooperativeScheduler](#CooperativeScheduler)
+- [Scheduler](#scheduler)
+- [CooperativeScheduler](#cooperativescheduler)
   - [create](#createcurrenttime)
   - [create](#createcurrenttime)
   - [schedule](#scheduleaction-delay)
   - [schedule](#scheduleaction-delay)
   - [update](#updatedelta)
   - [update](#updatedelta)
   - [isEmpty](#isempty)
   - [isEmpty](#isempty)
-- [Subject](#Subject)
+- [Subject](#subject)
   - [create](#createvalue)
   - [create](#createvalue)
   - [subscribe](#subscribeonnext-onerror-oncomplete)
   - [subscribe](#subscribeonnext-onerror-oncomplete)
   - [onNext](#onnextvalues)
   - [onNext](#onnextvalues)

+ 1 - 1
tools/update_documentation.lua

@@ -10,7 +10,7 @@ for _, comment in ipairs(comments) do
 
 
   if tags.class then
   if tags.class then
     local class = tags.class[1].name
     local class = tags.class[1].name
-    io.write('- [' .. class .. '](#' .. class .. ')\n')
+    io.write('- [' .. class .. '](#' .. class:lower() .. ')\n')
   else
   else
     local context = comment.context:match('function.-([:%.].+)')
     local context = comment.context:match('function.-([:%.].+)')
     if tags.arg then
     if tags.arg then