Skip to content

Commit 48d8bab

Browse files
committed
rename ApiDocumentation to SpecificationDocs
1 parent 947a8f0 commit 48d8bab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

glad/documentation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from glad.parse import ApiDocumentation, CommandDocs, xml_parse
1+
from glad.parse import SpecificationDocs, CommandDocs, xml_parse
22
from glad.util import prefix, memoize, raw_text
33
from shutil import rmtree
44
import glad.util
55
import subprocess
66
import re
77

88

9-
class DocsGL(ApiDocumentation):
9+
class DocsGL(SpecificationDocs):
1010
URL = 'https://github.com/BSVino/docs.gl.git'
1111
CACHED = True # Only clones the DocsGL repo once
1212
API = 'gl'

glad/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@ def __str__(self):
14771477
__repr__ = __str__
14781478

14791479

1480-
class ApiDocumentation(object):
1480+
class SpecificationDocs(object):
14811481
URL = None
14821482

14831483
def __init__(self, api, version, profile, extensions):

0 commit comments

Comments
 (0)