Skip to content

Commit

Permalink
Fix trivial docstring typos (#435)
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Beard <[email protected]>
  • Loading branch information
chrisbeard authored Oct 2, 2024
1 parent 825ee47 commit c55fcdc
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/groups/mqb/mqbmock/mqbmock_cluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ namespace mqbmock {
// class Cluster
// =============

/// Mock cluster implementation of the `mqbi::Cluster` inteface.
/// Mock cluster implementation of the `mqbi::Cluster` interface.
class Cluster : public mqbi::Cluster {
private:
// PRIVATE TYPES
Expand Down
6 changes: 3 additions & 3 deletions src/groups/mqb/mqbmock/mqbmock_domain.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
//
//@DESCRIPTION: This component provides a mock implementation,
// 'mqbmock::Domain', of the 'mqbi::Domain' interface that is used to emulate
// a a real domain for testing purposes.
// a real domain for testing purposes.
//
/// Notes
///------
Expand Down Expand Up @@ -91,7 +91,7 @@ namespace mqbmock {
// class Domain
// ============

/// Mock domain implementation of the `mqbi::Domain` inteface.
/// Mock domain implementation of the `mqbi::Domain` interface.
class Domain : public mqbi::Domain {
private:
// PRIVATE TYPES
Expand Down Expand Up @@ -249,7 +249,7 @@ class Domain : public mqbi::Domain {
// class DomainFactory
// ===================

/// Mock implementation of the `mqbi::DomainFactory` inteface.
/// Mock implementation of the `mqbi::DomainFactory` interface.
class DomainFactory : public mqbi::DomainFactory {
private:
// DATA
Expand Down
2 changes: 1 addition & 1 deletion src/groups/mqb/mqbmock/mqbmock_logidgenerator.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace mqbmock {
// class LogIdGenerator
// ====================

/// Mock implementation of the `mqbsi::LogIdGenerator` inteface.
/// Mock implementation of the `mqbsi::LogIdGenerator` interface.
class LogIdGenerator : public mqbsi::LogIdGenerator {
private:
// DATA
Expand Down
2 changes: 1 addition & 1 deletion src/groups/mqb/mqbmock/mqbmock_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ namespace mqbmock {
// Class Queue
// ===========

/// Mock queue implementation of the `mqbi::Queue` inteface
/// Mock queue implementation of the `mqbi::Queue` interface
class Queue : public mqbi::Queue {
private:
// CLASS-SCOPE CATEGORY
Expand Down
2 changes: 1 addition & 1 deletion src/groups/mqb/mqbplug/mqbplug_plugininfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//@PURPOSE: Provide definition for plugin description.
//
//@CLASSES:
// mqbplug::PluginInfo: VST representing metadata of a a plugin.
// mqbplug::PluginInfo: VST representing metadata of a plugin.
//
//@DESCRIPTION: This component provide definitions for structure
// ('mqbplug::PluginInfo') used to define plugin for BlazingMQ broker.
Expand Down
2 changes: 1 addition & 1 deletion src/groups/mqb/mqbs/mqbs_filestore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ int FileStore::openInRecoveryMode(bsl::ostream& errorDescription,
return rc_PARTITION_FULL; // RETURN
}

// Check if DATA and QLIST files are full. This is not a a show stopper,
// Check if DATA and QLIST files are full. This is not a show stopper,
// as we may still get some deletions which may make space in those files.

if (dataFileOffset == d_config.maxDataFileSize() ||
Expand Down
2 changes: 1 addition & 1 deletion src/groups/mwc/mwcio/mwcio_ntcchannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef INCLUDED_MWCIO_NTCCHANNEL
#define INCLUDED_MWCIO_NTCCHANNEL

//@PURPOSE: Provide a a bi-directional async channel implemented using NTC.
//@PURPOSE: Provide a bi-directional async channel implemented using NTC.
//
//@CLASSES:
// mwcio::Channel: Interface for a NTC-based bi-directional async channel.
Expand Down
2 changes: 1 addition & 1 deletion src/groups/mwc/mwcst/mwcst_basictableinfoprovider.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class BasicTableInfoProvider_ValuePrintVisitor;
// class BasicTableInfoProvider_ColumnFormat
// =========================================

/// Format of a a column to be printed by a `BasicTableInfoProvider`
/// Format of a column to be printed by a `BasicTableInfoProvider`
class BasicTableInfoProvider_ColumnFormat {
private:
// PRIVATE TYPES
Expand Down
2 changes: 1 addition & 1 deletion src/python/blazingmq/dev/it/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ messages output before BALL has been configured) are logged directly under

This package performs the following transformations on the log records:

- It adds a a new attribute, `bmqContext`, which contains a description of the
- It adds a new attribute, `bmqContext`, which contains a description of the
origin of the log record: `TEST` for records issued by test code, and the
process name of the broker or tool for log records translated from BALL
records. The attribute is available in format specifications.
Expand Down

0 comments on commit c55fcdc

Please sign in to comment.