Skip to content

Commit

Permalink
Merge pull request godotengine#17 from ramatakinc/ad-documentation-up…
Browse files Browse the repository at this point in the history
…dates

Fix a few small typos
  • Loading branch information
ellenhp authored Jul 12, 2023
2 parents ae403e2 + b5eecb7 commit 62e2741
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/classes/AdServer.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AdServer" inherits="Object" version="3.5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
<brief_description>
The AdServer is a low-level interface with the Ramtak Mobile Studio advertisement system.
The AdServer is a low-level interface with the Ramatak Mobile Studio advertisement system.
</brief_description>
<description>
While it is possible to use AdServer as a user, it's much more ergonomic to use the AdController and BannerAdController nodes.
Expand All @@ -12,7 +12,7 @@
<method name="get_available_plugins" qualifiers="const">
<return type="Array" />
<description>
Regurns a list of available plugins in the current build.
Returns a list of available plugins in the current build.
</description>
</method>
<method name="get_plugin_priority_order" qualifiers="const">
Expand All @@ -33,38 +33,38 @@
<signal name="ad_clicked">
<argument index="0" name="request_id" type="int" />
<description>
Emitted whenever an advertisement is clicked. You probobaly want to be using the AdController/BannerAdController version of this signal.
Emitted whenever an advertisement is clicked. You probably want to be using the AdController/BannerAdController version of this signal.
</description>
</signal>
<signal name="ad_closed">
<argument index="0" name="request_id" type="int" />
<description>
Emitted whenever an advertisement is closed. You probobaly want to be using the AdController/BannerAdController version of this signal.
Emitted whenever an advertisement is closed. You probably want to be using the AdController/BannerAdController version of this signal.
</description>
</signal>
<signal name="ad_error">
<argument index="0" name="request_id" type="int" />
<argument index="1" name="message" type="String" />
<description>
Emitted whenever an advertisement has an error. You probobaly want to be using the AdController/BannerAdController version of this signal.
Emitted whenever an advertisement has an error. You probably want to be using the AdController/BannerAdController version of this signal.
</description>
</signal>
<signal name="ad_loaded">
<argument index="0" name="request_id" type="int" />
<description>
Emitted whenever an advertisement is loaded. You probobaly want to be using the AdController/BannerAdController version of this signal.
Emitted whenever an advertisement is loaded. You probably want to be using the AdController/BannerAdController version of this signal.
</description>
</signal>
<signal name="ad_reward_earned">
<argument index="0" name="request_id" type="int" />
<description>
Emitted whenever an advertisement reward is earned by the user. You probobaly want to be using the AdController/BannerAdController version of this signal.
Emitted whenever an advertisement reward is earned by the user. You probably want to be using the AdController/BannerAdController version of this signal.
</description>
</signal>
<signal name="ad_shown">
<argument index="0" name="request_id" type="int" />
<description>
Emitted whenever an advertisement is shown. You probobaly want to be using the AdController/BannerAdController version of this signal.
Emitted whenever an advertisement is shown. You probably want to be using the AdController/BannerAdController version of this signal.
</description>
</signal>
</signals>
Expand Down

0 comments on commit 62e2741

Please sign in to comment.