Skip to content

Commit

Permalink
rename ApiDocumentation to SpecificationDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloose committed May 18, 2024
1 parent 947a8f0 commit 48d8bab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions glad/documentation.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from glad.parse import ApiDocumentation, CommandDocs, xml_parse
from glad.parse import SpecificationDocs, CommandDocs, xml_parse
from glad.util import prefix, memoize, raw_text
from shutil import rmtree
import glad.util
import subprocess
import re


class DocsGL(ApiDocumentation):
class DocsGL(SpecificationDocs):
URL = 'https://github.com/BSVino/docs.gl.git'
CACHED = True # Only clones the DocsGL repo once
API = 'gl'
Expand Down
2 changes: 1 addition & 1 deletion glad/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,7 @@ def __str__(self):
__repr__ = __str__


class ApiDocumentation(object):
class SpecificationDocs(object):
URL = None

def __init__(self, api, version, profile, extensions):
Expand Down

0 comments on commit 48d8bab

Please sign in to comment.