Skip to content

Commit

Permalink
Fix moduletag in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorRigby committed Dec 20, 2024
1 parent f52f72e commit 889ecd8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions lib/blue_heron/hci/commands/controller_and_baseband.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
defmodule BlueHeron.HCI.Command.ControllerAndBaseband do
alias __MODULE__, as: CaB
@ogf 0x03

@moduledoc """
HCI commands for working with the controller and baseband.
Expand All @@ -12,9 +15,6 @@ defmodule BlueHeron.HCI.Command.ControllerAndBaseband do
Bluetooth Spec v5
"""

alias __MODULE__, as: CaB
@ogf 0x03

@doc false
def __ogf__(), do: @ogf

Expand Down
6 changes: 3 additions & 3 deletions lib/blue_heron/hci/commands/informational_parameters.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
defmodule BlueHeron.HCI.Command.InformationalParameters do
alias __MODULE__, as: IP
@ogf 0x04

@moduledoc """
HCI commands for working with the informational parameters.
Expand All @@ -13,9 +16,6 @@ defmodule BlueHeron.HCI.Command.InformationalParameters do
Bluetooth Spec v5.2, vol 4, Part E, 7.2
"""

alias __MODULE__, as: IP
@ogf 0x04

@doc false
def __ogf__(), do: @ogf

Expand Down
6 changes: 3 additions & 3 deletions lib/blue_heron/hci/commands/le_controller.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
defmodule BlueHeron.HCI.Command.LEController do
alias __MODULE__, as: LEC
@ogf 0x08

@moduledoc """
HCI commands for working with the LE Controller.
Expand All @@ -11,9 +14,6 @@ defmodule BlueHeron.HCI.Command.LEController do
Reference: Version 5.2, Vol 4, Part E, 7.8
"""

alias __MODULE__, as: LEC
@ogf 0x08

@doc false
def __ogf__(), do: @ogf

Expand Down

0 comments on commit 889ecd8

Please sign in to comment.