Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed comment #163

Merged
merged 1 commit into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace adapters
{

/**
* The AiExplanation class makes the API calls to the server to get the
* The IAiExplanationAccess class makes the API calls to the server to get the
* explanation for text.
*/
class ADAPTERS_EXPORT IAiExplanationAccess : public QObject
Expand All @@ -25,4 +25,4 @@ class ADAPTERS_EXPORT IAiExplanationAccess : public QObject
void errorOccured(int errorCode) const;
};

} // namespace adapters
} // namespace adapters
2 changes: 1 addition & 1 deletion src/adapters/interfaces/persistance/i_app_info_access.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace adapters
{

/**
* The AppInfo class makes the API calls to the server to query metainformation
* The IAppInfoAccess class makes the API calls to the server to query metainformation
* about Librum.
*/
class ADAPTERS_EXPORT IAppInfoAccess : public QObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace adapters
{

/**
* The LibraryStorageAccess class makes the API calls to the book storage
* The IAuthenticationAccess class makes the API calls to the authentication
* server.
*/
class ADAPTERS_EXPORT IAuthenticationAccess : public QObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace adapters
{

/**
* The DictionaryAccess class makes the API calls to the API of the used
* The IDictionaryAccess class makes the API calls to the API of the used
* dictionary to retrieve definitions, etc. from it.
*/
class ADAPTERS_EXPORT IDictionaryAccess : public QObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace adapters
{

/**
* The FolderStorageAccess class makes the API calls to the API of the used
* The IFolderStorageAccess class makes the API calls to the API of the used
* Folder to store folders, etc. from it.
*/
class ADAPTERS_EXPORT IFolderStorageAccess : public QObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace adapters
{

/**
* The IAuthenticationAccess class makes the API calls to the authentication
* The ILibraryStorageAccess class makes the API calls to the book storage
* server.
*/
class ADAPTERS_EXPORT ILibraryStorageAccess : public QObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace adapters
{

/**
* The UserStorageAccess class makes the API calls to the user storage server.
* The IUserStorageAccess class makes the API calls to the user storage server.
*/
class ADAPTERS_EXPORT IUserStorageAccess : public QObject
{
Expand Down
Loading